home *** CD-ROM | disk | FTP | other *** search
/ Especial Multimedia / Especial Multimedia.iso / Multimed / Herra / TIMWIN.ZIP / SELUT.CMD < prev    next >
OS/2 REXX Batch file  |  1993-09-22  |  366b  |  22 lines

  1. ;selut  --  select LUT
  2. ;
  3. ;selects a display look up table corresponding to the current active
  4. ;image (frame grabber or win). Choice: standard patterns 1, 2, 3 or 4
  5. ;
  6. parms
  7.  int lutpat = 1
  8. endparms
  9.  
  10. int prop, err
  11.  
  12. prop = improp
  13.  
  14. if (prop&WIN_BIT) == WIN_BIT
  15.    *winlut lutpat
  16. elseif (prop&DIS_BIT) == DIS_BIT
  17.    err = chk lut lutpat
  18. endif
  19.  
  20. stop
  21.  
  22.